zeek35.html

 

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Custom Variables</title>
    <style>
        :root {
            --dark-colorrgb(0610);
            --middle-colorrgb(60136207);
            --light-colorrgb(252206206);
            --maxvw:700px;
        }

        .container {
            background-color:var(--light-color);
            displayflex;
            heightvar(--maxvw);
            align-itemscenter;
            justify-contentcenter;
        }

        .box {
            height150px;
            width300px;
            bordervar(--middle-color2px solid;
            background-colorvar(--dark-color);
            colorvar(--middle-color);
            padding10px;
            margin13px 8px;
        }
    </style>
</head>

<body>
    <div class="container">
        <div class="box" id="box-1">BOX 1</div>
        <div class="box" id="box-2">BOX 2</div>
        <div class="box" id="box-3">BOX 3</div>
    </div>

</body>

</html>

Comments

Popular posts from this blog

INDEX OF ZEEK HTML,CSS and JS